home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / lib / float / dpa_cmp.a < prev    next >
Encoding:
Text File  |  1994-02-01  |  409 b   |  26 lines

  1.  
  2.         ;   DPA_CMP.A
  3.         ;
  4.         ;   A0    arg1    (8 bytes)
  5.         ;   A1    arg2    (8 bytes)
  6.         ;
  7.         ;   (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  8.  
  9.         section text,code
  10.  
  11.         xref    _MathIeeeDoubBasBase
  12.         xref    _LVOIEEEDPCmp
  13.         xdef    __dpcmp_a
  14.  
  15. __dpcmp_a    movem.l D2/D3/A6,-(sp)
  16.         move.l    _MathIeeeDoubBasBase(A4),A6
  17.         movem.l (A0),D0/D1
  18.         movem.l (A1),D2/D3
  19.         jsr    _LVOIEEEDPCmp(A6)
  20.         movem.l (sp)+,D2/D3/A6
  21.         tst.l    D0
  22.         rts
  23.  
  24.         END
  25.  
  26.